home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / ctlmod / cm_close.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  334 b   |  18 lines

  1. # include    "ctlmod.h"
  2. # include    <sccs.h>
  3.  
  4. SCCSID(@(#)cm_close.c    8.1    12/31/84)
  5.  
  6. /*
  7. **  CM_CLOSE -- close the parser write pipe
  8. **
  9. **    This routine is a Kludge for use by the tty monitor only.
  10. **    It is here because of the difficulty of getting at the
  11. **    Cm struct from another directory.
  12. */
  13.  
  14. cm_close()
  15. {
  16.     close(Cm.cm_proc[1].pr_file);
  17. }
  18.